home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 2.iso / dist / fw_glimpse.idb / usr / freeware / src / glimpse-3.0 / compress / README.z / README
Text File  |  1997-09-09  |  808b  |  21 lines

  1. /* Copyright (c) 1994 Burra Gopal, Udi Manber.  All Rights Reserved. */
  2.  
  3. This directory contains the source code for the new text-compression
  4. algorithm. The source is divided as follows:
  5.  
  6. 1. main_comp.c, tcomp.c: source code for tcomp (compress algorithm).
  7.     This also uses simpletest.c and memlook.c from ../index.
  8.  
  9. 2. main_uncomp.c, tuncomp.c: source code for tuncomp (uncompress algorithm).
  10.  
  11. 3. read_in.c: generates build, the procedure which builds the dictionary
  12.     to be used by tuncomp and the hash_table used by tcomp. It uses
  13.     and interprets the output of the indexing-algorithm present
  14.     in ../index, the software is glimpseindex (a part of glimpse).
  15.  
  16. 4. hash.c: common routines used by tcomp and build.
  17.  
  18. 5. string.c: common routines used by tuncomp and build.
  19.  
  20. 6. misc.c, defs.h: common to all above.
  21.